home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990422-19990725 / 000125_news@watsun.cc.columbia.edu _Thu Jun 3 10:55:29 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA00233
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 3 Jun 1999 10:55:29 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA09771
  7.     for kermit.misc@watsun.cc.columbia.edu; Thu, 3 Jun 1999 10:41:06 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: moving from serial to tcp/ip
  11. Date: 3 Jun 1999 14:41:05 GMT
  12. Organization: Columbia University
  13. Message-ID: <7j6461$9h8$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <7j41oi$rts$1@nnrp1.deja.com>,
  17.   <leofa@my-deja.com> wrote:
  18. : someone please help if you can.  i am using k95 v
  19. : 1.1.17 on an nt box.  there is kermit on my unix
  20. : box which is acting as a server.
  21. : i am trying to move my working kermit from one nt
  22. : box to another.  the old nt uses a serial cable
  23. : to connect via com1 to a unix box.  i want to get
  24. : rid of the serial cable as i move.
  25. : the new nt is on the same network cable/hub as
  26. : the unix box. unix's addr is 172.16.1.40; nt's
  27. : addr is 172.16.1.39.
  28. : i thought i might just be able to remove the "set
  29. : line 1" and "set speed 9600" and use "set net
  30. : type tcp" and "set host 172.16.1.40"
  31. : i want to be able to get remote directories and
  32. : files on the unix box from the nt box.
  33. The easy way to make a telnet connection from K95 is to
  34. use its "telnet" command.  At the K-95> prompt, type:
  35.  
  36.   telnet 172.16.1.40
  37.  
  38. >From that point onwards, everything will be the same as
  39. on your previous serial connection, but faster.
  40.  
  41. - Frank